home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / UPC12BS1.ZIP / LIB / EXECUTE.H < prev    next >
Text File  |  1993-07-31  |  2KB  |  48 lines

  1. /*--------------------------------------------------------------------*/
  2. /*       e x e c u t e . h                                            */
  3. /*                                                                    */
  4. /*       Execute an external command for UUPC/extended functions      */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*--------------------------------------------------------------------*/
  8. /*       Changes Copyright (c) 1989-1993 by Kendra Electronic         */
  9. /*       Wonderworks.                                                 */
  10. /*                                                                    */
  11. /*       All rights reserved except those explicitly granted by       */
  12. /*       the UUPC/extended license agreement.                         */
  13. /*--------------------------------------------------------------------*/
  14.  
  15. /*--------------------------------------------------------------------*/
  16. /*                          RCS Information                           */
  17. /*--------------------------------------------------------------------*/
  18.  
  19. /*
  20.  *    $Id: execute.h 1.1 1993/07/31 16:28:59 ahd Exp $
  21.  *
  22.  *    Revision history:
  23.  *    $Log: execute.h $
  24.  * Revision 1.1  1993/07/31  16:28:59  ahd
  25.  * Initial revision
  26.  *
  27.  */
  28.  
  29. /*--------------------------------------------------------------------*/
  30. /*       e x e c u t e                                                */
  31. /*                                                                    */
  32. /*       Generic execute external command with optional redirection   */
  33. /*       of standard input and output                                 */
  34. /*--------------------------------------------------------------------*/
  35.  
  36. int execute( const char *command,
  37.              const char *parameters,
  38.              const char *input,
  39.              const char *output,
  40.              const boolean synchronous,
  41.              const boolean foreground );
  42.  
  43. int executeCommand( const char *command,
  44.                     const char *input,
  45.                     const char *output,
  46.                     const boolean synchronous,
  47.                     const boolean foreground );
  48.